d2b13f6928a73a43c66244426949bd04e31bff8f,src/freenet/client/async/ClientRequester.java,ClientRequester,addBlocks,#number#ObjectContainer#,156
Before Change
}
if (wasFinalized) {
if(Logger.globalGetThreshold().ordinal() < LogLevel.MINOR.ordinal())
Logger.error(this, "addBlocks() but set finalized! on "+this);
else
Logger.error(this, "addBlocks() but set finalized! on "+this, new Exception("error"));
}
if(logMINOR) Logger.minor(this, "addBlocks("+num+"): total="+totalBlocks+" successful="+successfulBlocks+" failed="+failedBlocks+" required="+minSuccessBlocks);
After Change
}
if (wasFinalized) {
if (LogLevel.MINOR.matchesThreshold(Logger.globalGetThreshold()))
Logger.error(this, "addBlocks() but set finalized! on "+this, new Exception("error"));
else
Logger.error(this, "addBlocks() but set finalized! on "+this);
}